wok-6.x annotate taglib/receipt @ rev 16265
Up cookutils 3.3.1
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Apr 05 11:16:11 2014 +0000 (2014-04-05) |
parents | 7bae66654182 |
children | 69c80106a6af |
rev | line source |
---|---|
pankso@1118 | 1 # SliTaz package receipt. |
pankso@1118 | 2 |
pankso@1118 | 3 PACKAGE="taglib" |
paul@9550 | 4 VERSION="1.7" |
pankso@1118 | 5 CATEGORY="multimedia" |
pankso@1118 | 6 SHORT_DESC="Audio tag library." |
pankso@1118 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15590 | 8 LICENSE="LGPL2.1" |
pankso@1118 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@1118 | 10 WEB_SITE="http://developer.kde.org/~wheeler/taglib.html" |
pankso@1118 | 11 WGET_URL="http://developer.kde.org/~wheeler/files/src/$TARBALL" |
pascal@15590 | 12 TAGS="multimedia music tag" |
pascal@15590 | 13 |
pascal@5007 | 14 DEPENDS="zlib gcc-lib-base" |
slaxemulator@8837 | 15 BUILD_DEPENDS="zlib-dev cmake" |
pankso@1118 | 16 |
pankso@1118 | 17 # Rules to configure and make the package. |
pankso@1118 | 18 compile_rules() |
pankso@1118 | 19 { |
pankso@1118 | 20 cd $src |
slaxemulator@8837 | 21 mkdir build |
slaxemulator@8837 | 22 cd build |
slaxemulator@8837 | 23 cmake ../ \ |
slaxemulator@8837 | 24 -DCMAKE_INSTALL_PREFIX=/usr \ |
slaxemulator@8837 | 25 -DCMAKE_BUILD_TYPE=Release \ |
paul@9550 | 26 -DENABLE_STATIC=OFF \ |
slaxemulator@8837 | 27 -DWITH_MP4=ON \ |
slaxemulator@8837 | 28 -DWITH_ASF=ON |
slaxemulator@8837 | 29 make VERBOSE=1 |
slaxemulator@8837 | 30 make install |
pankso@1118 | 31 } |
pankso@1118 | 32 |
pankso@1118 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@1118 | 34 genpkg_rules() |
pankso@1118 | 35 { |
pankso@1118 | 36 mkdir -p $fs/usr/lib |
pascal@15590 | 37 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@1118 | 38 } |