wok annotate recorder/receipt @ rev 15936
UP: soprano (2.8.0) and fix build depends
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Feb 22 11:27:57 2014 +0100 (2014-02-22) |
parents | 940b5937e496 |
children | 6135577f4d08 |
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" |
pascal@15600 | 8 LICENSE="GPL3" |
devl547@6106 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@15600 | 10 WEB_SITE="http://code.google.com/p/recorder/" |
pascal@15600 | 11 WGET_URL="http://recorder.googlecode.com/files/$TARBALL" |
pascal@15600 | 12 |
devl547@6106 | 13 DEPENDS="pygtk coreutils cdrkit dvd+rw-tools" |
devl547@6106 | 14 BUILD_DEPENDS="pygtk-dev" |
devl547@6106 | 15 |
devl547@6106 | 16 # Rules to configure and make the package. |
devl547@6106 | 17 compile_rules() |
devl547@6106 | 18 { |
devl547@6106 | 19 cd $src |
pascal@8974 | 20 cp $stuff/Makefile Makefile |
pascal@15600 | 21 make DESTDIR=$DESTDIR install |
devl547@6106 | 22 } |
devl547@6106 | 23 |
devl547@6106 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@6106 | 25 genpkg_rules() |
devl547@6106 | 26 { |
devl547@6106 | 27 mkdir -p $fs/usr |
pascal@15600 | 28 cp -a $install/usr/bin $fs/usr/ |
pascal@15600 | 29 cp -a $install/usr/share $fs/usr/ |
devl547@6106 | 30 } |
devl547@6106 | 31 |