rev |
line source |
pascal@20695
|
1 # SliTaz package receipt.
|
pascal@20695
|
2
|
pascal@20695
|
3 PACKAGE="nrg2iso"
|
pascal@20695
|
4 VERSION="0.4"
|
pascal@20695
|
5 CATEGORY="system-tools"
|
pascal@20695
|
6 SHORT_DESC="Convert CD (or DVD) image generated by Nero Burning Rom to ISO format"
|
pascal@20695
|
7 MAINTAINER="pascal.bellard@slitaz.org"
|
pascal@20695
|
8 LICENSE="GPL2"
|
pascal@20695
|
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
|
pascal@20695
|
10 WEB_SITE="http://gregory.kokanosky.free.fr/v4/linux/nrg2iso.en.html"
|
pascal@20695
|
11 WGET_URL="http://gregory.kokanosky.free.fr/v4/linux/$TARBALL"
|
pascal@20695
|
12 TAGS="CD DVD ISO9660"
|
pascal@20695
|
13
|
pascal@20695
|
14 # Rules to configure and make the package.
|
pascal@20695
|
15 compile_rules()
|
pascal@20695
|
16 {
|
pascal@20695
|
17 make
|
pascal@20695
|
18 }
|
pascal@20695
|
19
|
pascal@20695
|
20 # Rules to gen a SliTaz package suitable for Tazpkg.
|
pascal@20695
|
21 genpkg_rules()
|
pascal@20695
|
22 {
|
pascal@20695
|
23 mkdir -p $fs/usr/bin
|
pascal@20695
|
24 cp $src/nrg2iso $fs/usr/bin
|
pascal@20695
|
25 }
|
pascal@20695
|
26
|