wok annotate recorder/receipt @ rev 8389
Up; tazpkg 4.2.5
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Fri Feb 04 19:46:14 2011 +0100 (2011-02-04) |
parents | 39a00473d495 |
children | 940b5937e496 |
rev | line source |
---|---|
devl547@6106 | 1 # SliTaz package receipt. |
devl547@6106 | 2 |
devl547@6106 | 3 PACKAGE="recorder" |
devl547@6106 | 4 VERSION="1.4.5" |
pascal@6138 | 5 CATEGORY="utilities" |
devl547@6106 | 6 SHORT_DESC="A simple GTK+ disc burner" |
devl547@6106 | 7 MAINTAINER="devl547@gmail.com" |
devl547@6106 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
devl547@6106 | 9 DEPENDS="pygtk coreutils cdrkit dvd+rw-tools" |
devl547@6106 | 10 BUILD_DEPENDS="pygtk-dev" |
devl547@6106 | 11 WEB_SITE="http://code.google.com/p/recorder/" |
devl547@6106 | 12 WGET_URL="http://recorder.googlecode.com/files/$TARBALL" |
devl547@6106 | 13 |
devl547@6106 | 14 # Rules to configure and make the package. |
devl547@6106 | 15 compile_rules() |
devl547@6106 | 16 { |
devl547@6106 | 17 cd $src |
devl547@6106 | 18 cp ../stuff/Makefile Makefile |
devl547@6106 | 19 make DESTDIR=$PWD/_pkg install |
devl547@6106 | 20 } |
devl547@6106 | 21 |
devl547@6106 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@6106 | 23 genpkg_rules() |
devl547@6106 | 24 { |
devl547@6106 | 25 mkdir -p $fs/usr |
devl547@6106 | 26 cp -a $_pkg/usr/bin $fs/usr/ |
devl547@6106 | 27 cp -a $_pkg/usr/share $fs/usr/ |
devl547@6106 | 28 } |
devl547@6106 | 29 |