# HG changeset patch # User Pascal Bellard # Date 1347348063 -7200 # Node ID c8e8372d27d357fe1ce7ed268d9146a8f499b9d0 # Parent 73cd945fa830b00720dd6128eb61f08243ee37cf Move from undigest: burp androguard ibus ibus-dev ibus-hangul uemacs smx smx-dev diff -r 73cd945fa830 -r c8e8372d27d3 androguard/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/androguard/receipt Tue Sep 11 09:21:03 2012 +0200 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="androguard" +VERSION="1.5" +CATEGORY="development" +SHORT_DESC="Reverse engineering tool for Android applications." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://code.google.com/p/$PACKAGE" +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="python-dev setuptools" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build && + python setup.py install --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs +} diff -r 73cd945fa830 -r c8e8372d27d3 burp/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/burp/receipt Tue Sep 11 09:21:03 2012 +0200 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="burp" +VERSION="1.3.10" +CATEGORY="utilities" +SHORT_DESC="KISS Bakcup and Restore Program" +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://burp.grke.net/" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +DEPENDS="acl libssl libcrypto attr popt ncurses zlib bzlib gcc-lib-base" +BUILD_DEPENDS="librsync acl-dev openssl-dev attr-dev popt-dev ncurses-dev \ +bzip2-dev zlib-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr \ + --sbindir=/usr/sbin \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + $CONFIGURE_ARGS && + make && make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r 73cd945fa830 -r c8e8372d27d3 ibus-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ibus-dev/receipt Tue Sep 11 09:21:03 2012 +0200 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="ibus-dev" +VERSION="1.4.2" +CATEGORY="development" +SHORT_DESC="Intelligent Input Bus for Linux / Unix OS, development files" +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://code.google.com/p/ibus/" +WANTED="ibus" + +DEPENDS="ibus" +BUILD_DEPENDS="" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib $fs/usr + find $install/usr/lib | grep '\.so' | xargs rm -f +} diff -r 73cd945fa830 -r c8e8372d27d3 ibus-hangul/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ibus-hangul/receipt Tue Sep 11 09:21:03 2012 +0200 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="ibus-hangul" +VERSION="1.4.1" +CATEGORY="utilities" +SHORT_DESC="Intelligent Input Bus" +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://code.google.com/p/ibus/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="http://ibus.googlecode.com/files/$TARBALL" + +DEPENDS="ibus" +BUILD_DEPENDS="intltool gettext perl ibus-dev glib-dev libhangul-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --disable-gtk3 \ + --with-gtk2-im-module-dir=$(ls -d /usr/lib/gtk-2*/2*/immodules/) \ + $CONFIGURE_ARGS && + make && make -k DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r 73cd945fa830 -r c8e8372d27d3 ibus/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ibus/receipt Tue Sep 11 09:21:03 2012 +0200 @@ -0,0 +1,37 @@ +# SliTaz package receipt. + +PACKAGE="ibus" +VERSION="1.4.2" +CATEGORY="utilities" +SHORT_DESC="Intelligent Input Bus for Linux / Unix OS" +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://code.google.com/p/ibus/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="http://ibus.googlecode.com/files/$TARBALL" + +DEPENDS="gtk+" +BUILD_DEPENDS="gtk+-dev GConf-dev python-dev dbus-python-dev dbus-glib-dev \ +intltool gettext perl iso-codes" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --disable-gtk3 \ + --with-gtk2-im-module-dir=$(ls -d /usr/lib/gtk-2*/2*/immodules/) \ + $CONFIGURE_ARGS && + make && make -k DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs + rm -rf $install/usr/include + rm -rf $install/usr/lib/pkgconfig + rm -rf $install/usr/share/gtk-doc + find $install/usr/lib | grep 'a$' | xargs rm -f +} diff -r 73cd945fa830 -r c8e8372d27d3 smx-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/smx-dev/receipt Tue Sep 11 09:21:03 2012 +0200 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="smx-dev" +VERSION="1.1.4-454" +CATEGORY="development" +SHORT_DESC="text-embedded macro processing language, development files." +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://www.smxlang.org/" +WANTED="smx" + +DEPENDS="smx" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib +} diff -r 73cd945fa830 -r c8e8372d27d3 smx/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/smx/receipt Tue Sep 11 09:21:03 2012 +0200 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="smx" +VERSION="1.1.4-454" +CATEGORY="development" +SHORT_DESC="text-embedded macro processing language." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.smxlang.org/" +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" + +DEPENDS="unixODBC sqlite libgd libcrypto gcc-lib-base zlib" +BUILD_DEPENDS="apache-dev apr-dev apr-util-dev unixODBC-dev \ +sqlite libgd-dev openssl-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib +} diff -r 73cd945fa830 -r c8e8372d27d3 uemacs/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uemacs/receipt Tue Sep 11 09:21:03 2012 +0200 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="uemacs" +VERSION="20120715" +CATEGORY="development" +SHORT_DESC="Tiny emacs clone." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://git.kernel.org/?p=editors/uemacs/uemacs.git" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="git|git://git.kernel.org/pub/scm/editors/uemacs/uemacs.git" +TAGS="editor" + +DEPENDS="" +BUILD_DEPENDS="git ncurses-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/em $fs/usr/bin +}