wok-6.x rev 13358
Move from undigest: burp androguard ibus ibus-dev ibus-hangul uemacs smx smx-dev
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Sep 11 09:21:03 2012 +0200 (2012-09-11) |
parents | 73cd945fa830 |
children | 5d8c4833404a |
files | androguard/receipt burp/receipt ibus-dev/receipt ibus-hangul/receipt ibus/receipt smx-dev/receipt smx/receipt uemacs/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/androguard/receipt Tue Sep 11 09:21:03 2012 +0200 1.3 @@ -0,0 +1,27 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="androguard" 1.7 +VERSION="1.5" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Reverse engineering tool for Android applications." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="http://code.google.com/p/$PACKAGE" 1.13 +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" 1.14 + 1.15 +DEPENDS="python" 1.16 +BUILD_DEPENDS="python-dev setuptools" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + python setup.py build && 1.23 + python setup.py install --root=$DESTDIR 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + cp -a $install/usr $fs 1.30 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/burp/receipt Tue Sep 11 09:21:03 2012 +0200 2.3 @@ -0,0 +1,33 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="burp" 2.7 +VERSION="1.3.10" 2.8 +CATEGORY="utilities" 2.9 +SHORT_DESC="KISS Bakcup and Restore Program" 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +WEB_SITE="http://burp.grke.net/" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.13 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 2.14 + 2.15 +DEPENDS="acl libssl libcrypto attr popt ncurses zlib bzlib gcc-lib-base" 2.16 +BUILD_DEPENDS="librsync acl-dev openssl-dev attr-dev popt-dev ncurses-dev \ 2.17 +bzip2-dev zlib-dev" 2.18 + 2.19 +# Rules to configure and make the package. 2.20 +compile_rules() 2.21 +{ 2.22 + cd $src 2.23 + ./configure --prefix=/usr \ 2.24 + --sbindir=/usr/sbin \ 2.25 + --sysconfdir=/etc \ 2.26 + --mandir=/usr/share/man \ 2.27 + --infodir=/usr/share/info \ 2.28 + $CONFIGURE_ARGS && 2.29 + make && make DESTDIR=$DESTDIR install 2.30 +} 2.31 + 2.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.33 +genpkg_rules() 2.34 +{ 2.35 + cp -a $install/* $fs 2.36 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/ibus-dev/receipt Tue Sep 11 09:21:03 2012 +0200 3.3 @@ -0,0 +1,21 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="ibus-dev" 3.7 +VERSION="1.4.2" 3.8 +CATEGORY="development" 3.9 +SHORT_DESC="Intelligent Input Bus for Linux / Unix OS, development files" 3.10 +MAINTAINER="pascal.bellard@slitaz.org" 3.11 +WEB_SITE="http://code.google.com/p/ibus/" 3.12 +WANTED="ibus" 3.13 + 3.14 +DEPENDS="ibus" 3.15 +BUILD_DEPENDS="" 3.16 + 3.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.18 +genpkg_rules() 3.19 +{ 3.20 + mkdir $fs/usr/lib 3.21 + cp -a $install/usr/include $fs/usr 3.22 + cp -a $install/usr/lib $fs/usr 3.23 + find $install/usr/lib | grep '\.so' | xargs rm -f 3.24 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/ibus-hangul/receipt Tue Sep 11 09:21:03 2012 +0200 4.3 @@ -0,0 +1,32 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="ibus-hangul" 4.7 +VERSION="1.4.1" 4.8 +CATEGORY="utilities" 4.9 +SHORT_DESC="Intelligent Input Bus" 4.10 +MAINTAINER="pascal.bellard@slitaz.org" 4.11 +WEB_SITE="http://code.google.com/p/ibus/" 4.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 4.13 +WGET_URL="http://ibus.googlecode.com/files/$TARBALL" 4.14 + 4.15 +DEPENDS="ibus" 4.16 +BUILD_DEPENDS="intltool gettext perl ibus-dev glib-dev libhangul-dev" 4.17 + 4.18 +# Rules to configure and make the package. 4.19 +compile_rules() 4.20 +{ 4.21 + cd $src 4.22 + ./configure --prefix=/usr \ 4.23 + --mandir=/usr/share/man \ 4.24 + --infodir=/usr/share/info \ 4.25 + --disable-gtk3 \ 4.26 + --with-gtk2-im-module-dir=$(ls -d /usr/lib/gtk-2*/2*/immodules/) \ 4.27 + $CONFIGURE_ARGS && 4.28 + make && make -k DESTDIR=$DESTDIR install 4.29 +} 4.30 + 4.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.32 +genpkg_rules() 4.33 +{ 4.34 + cp -a $install/* $fs 4.35 +}
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/ibus/receipt Tue Sep 11 09:21:03 2012 +0200 5.3 @@ -0,0 +1,37 @@ 5.4 +# SliTaz package receipt. 5.5 + 5.6 +PACKAGE="ibus" 5.7 +VERSION="1.4.2" 5.8 +CATEGORY="utilities" 5.9 +SHORT_DESC="Intelligent Input Bus for Linux / Unix OS" 5.10 +MAINTAINER="pascal.bellard@slitaz.org" 5.11 +WEB_SITE="http://code.google.com/p/ibus/" 5.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 5.13 +WGET_URL="http://ibus.googlecode.com/files/$TARBALL" 5.14 + 5.15 +DEPENDS="gtk+" 5.16 +BUILD_DEPENDS="gtk+-dev GConf-dev python-dev dbus-python-dev dbus-glib-dev \ 5.17 +intltool gettext perl iso-codes" 5.18 + 5.19 +# Rules to configure and make the package. 5.20 +compile_rules() 5.21 +{ 5.22 + cd $src 5.23 + ./configure --prefix=/usr \ 5.24 + --mandir=/usr/share/man \ 5.25 + --infodir=/usr/share/info \ 5.26 + --disable-gtk3 \ 5.27 + --with-gtk2-im-module-dir=$(ls -d /usr/lib/gtk-2*/2*/immodules/) \ 5.28 + $CONFIGURE_ARGS && 5.29 + make && make -k DESTDIR=$DESTDIR install 5.30 +} 5.31 + 5.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 5.33 +genpkg_rules() 5.34 +{ 5.35 + cp -a $install/* $fs 5.36 + rm -rf $install/usr/include 5.37 + rm -rf $install/usr/lib/pkgconfig 5.38 + rm -rf $install/usr/share/gtk-doc 5.39 + find $install/usr/lib | grep 'a$' | xargs rm -f 5.40 +}
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/smx-dev/receipt Tue Sep 11 09:21:03 2012 +0200 6.3 @@ -0,0 +1,19 @@ 6.4 +# SliTaz package receipt. 6.5 + 6.6 +PACKAGE="smx-dev" 6.7 +VERSION="1.1.4-454" 6.8 +CATEGORY="development" 6.9 +SHORT_DESC="text-embedded macro processing language, development files." 6.10 +MAINTAINER="pascal.bellard@slitaz.org" 6.11 +WEB_SITE="http://www.smxlang.org/" 6.12 +WANTED="smx" 6.13 + 6.14 +DEPENDS="smx" 6.15 + 6.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 6.17 +genpkg_rules() 6.18 +{ 6.19 + mkdir -p $fs/usr/lib 6.20 + cp -a $install/usr/include $fs/usr 6.21 + cp -a $install/usr/lib/*a $fs/usr/lib 6.22 +}
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/smx/receipt Tue Sep 11 09:21:03 2012 +0200 7.3 @@ -0,0 +1,34 @@ 7.4 +# SliTaz package receipt. 7.5 + 7.6 +PACKAGE="smx" 7.7 +VERSION="1.1.4-454" 7.8 +CATEGORY="development" 7.9 +SHORT_DESC="text-embedded macro processing language." 7.10 +MAINTAINER="pascal.bellard@slitaz.org" 7.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 7.12 +WEB_SITE="http://www.smxlang.org/" 7.13 +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" 7.14 + 7.15 +DEPENDS="unixODBC sqlite libgd libcrypto gcc-lib-base zlib" 7.16 +BUILD_DEPENDS="apache-dev apr-dev apr-util-dev unixODBC-dev \ 7.17 +sqlite libgd-dev openssl-dev" 7.18 + 7.19 +# Rules to configure and make the package. 7.20 +compile_rules() 7.21 +{ 7.22 + cd $src 7.23 + ./configure \ 7.24 + --prefix=/usr \ 7.25 + --mandir=/usr/share/man \ 7.26 + $CONFIGURE_ARGS && 7.27 + make && 7.28 + make DESTDIR=$DESTDIR install 7.29 +} 7.30 + 7.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 7.32 +genpkg_rules() 7.33 +{ 7.34 + mkdir -p $fs/usr/lib 7.35 + cp -a $install/usr/bin $fs/usr 7.36 + cp -a $install/usr/lib/*.so* $fs/usr/lib 7.37 +}
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/uemacs/receipt Tue Sep 11 09:21:03 2012 +0200 8.3 @@ -0,0 +1,29 @@ 8.4 +# SliTaz package receipt. 8.5 + 8.6 +PACKAGE="uemacs" 8.7 +VERSION="20120715" 8.8 +CATEGORY="development" 8.9 +SHORT_DESC="Tiny emacs clone." 8.10 +MAINTAINER="pascal.bellard@slitaz.org" 8.11 +TARBALL="$SOURCE-$VERSION.tar.gz" 8.12 +WEB_SITE="http://git.kernel.org/?p=editors/uemacs/uemacs.git" 8.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 8.14 +WGET_URL="git|git://git.kernel.org/pub/scm/editors/uemacs/uemacs.git" 8.15 +TAGS="editor" 8.16 + 8.17 +DEPENDS="" 8.18 +BUILD_DEPENDS="git ncurses-dev" 8.19 + 8.20 +# Rules to configure and make the package. 8.21 +compile_rules() 8.22 +{ 8.23 + cd $src 8.24 + make 8.25 +} 8.26 + 8.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 8.28 +genpkg_rules() 8.29 +{ 8.30 + mkdir -p $fs/usr/bin 8.31 + cp -a $src/em $fs/usr/bin 8.32 +}