wok annotate recorder/receipt @ rev 25407
updated wayland and wayland-dev (1.4.0 -> 1.21.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Aug 03 16:34:53 2022 +0100 (2022-08-03) |
parents | 2d4c3cc3ef95 |
children |
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@20692 | 10 WEB_SITE="https://web.archive.org/web/20170224152357/https://code.google.com/archive/p/recorder/" |
pascal@24982 | 11 WGET_URL="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$PACKAGE/$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 |