This repository has been archived by the owner on Oct 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Totally reorganized the source structure.
Translation updated (needs to be done again for all languages except French) Compilation and packaging reworked.
- Loading branch information
Cyrille Pontvieux
committed
Feb 24, 2013
1 parent
3df269c
commit 18a65a2
Showing
85 changed files
with
24,261 additions
and
22,924 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# vim: set syn=sh et ai sta sw=2 ts=2 tw=0: | ||
#Packager: JRD <[email protected]> | ||
#dep: btrfs-progs,coreutils,dosfstools,e2fsprogs,file,findutils,glibc,grep,jfsutils,ntfsprogs|ntfs-3g,python,reiserfsprogs,salixtools,shadow,spkg,util-linux,xfsprogs | ||
#sug: bootsetup|lilosetup,gparted,grub2,lilo,pygtk | ||
|
||
pkgname=salix-live-installer | ||
pkgver=0.4 | ||
pkgrel=1cp | ||
arch=noarch | ||
source=(https://github.com/jrd/$pkgname/archive/$pkgver.tar.gz) | ||
sourcetemplate=http://people.salixos.org/jrd/salix/$pkgname-\$arch-$pkgver/ | ||
url=http://salixos.org | ||
options=('noextract') | ||
|
||
slackdesc=\ | ||
( | ||
#|-----handy-ruler------------------------------------------------------| | ||
"$pkgname (Install Salix Standard from a Live environment)" | ||
"Salix Live Installer helps installing Salix on you computer from the" | ||
"comfort of SalixLive's graphic environment." | ||
"A ncurses version is also in development." | ||
) | ||
|
||
build() { | ||
cd $SRC/$pkgname-$pkgver | ||
./compile.sh | ||
DESTDIR=$PKG ./install.sh | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
#!/bin/sh | ||
cd $(dirname "$0") | ||
rm -rf src/*.desktop src/*.pyc po/*.mo salix-live-installer-*.* | ||
find . -type f -name '*.pyc' -delete | ||
find . -type f -name '*.mo' -delete | ||
[ -d data/locale ] && rm -r data/locale | ||
[ -d build ] && rm -r build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
#!/bin/sh | ||
|
||
cd $(dirname $0) | ||
for i in `ls po/*.po`;do | ||
echo "Compiling `echo $i|sed "s|po/||"`" | ||
msgfmt $i -o `echo $i |sed "s/.po//"`.mo | ||
[ -d build ] && rm -r build | ||
mkdir build | ||
for p in data/po/*.po; do | ||
l=$(basename $p .po) | ||
echo "Compiling $l language" | ||
msgfmt $p -o build/$l.mo | ||
done | ||
intltool-merge po/ -d -u src/salix-live-installer.desktop.in src/salix-live-installer.desktop | ||
intltool-merge po/ -d -u src/salix-live-installer-kde.desktop.in src/salix-live-installer-kde.desktop | ||
intltool-merge po/ -d -u src/salix-live-installer.desktop.in build/salix-live-installer.desktop | ||
cat <<'EOF' > build/salix-live-installer | ||
#!/bin/sh | ||
python /usr/share/salix-live-installer/launcher.py "$@" | ||
EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
locale |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.mo |
Oops, something went wrong.