wok annotate ossp-uuid/receipt @ rev 22173

clementine: added build dependency chromaprint-dev
author Hans-G?nter Theisgen
date Fri Nov 08 14:48:56 2019 +0100 (2019-11-08)
parents c75c436df3e4
children 241fb98cab1c
rev   line source
pascal@17531 1 # SliTaz package receipt.
pascal@17531 2
pascal@17531 3 PACKAGE="ossp-uuid"
Hans-G?nter@21648 4 VERSION="1.6.2"
pascal@17531 5 CATEGORY="base-system"
pascal@17531 6 SHORT_DESC="Universally Unique Identifier tools"
pascal@17531 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17531 8 LICENSE="MIT"
Hans-G?nter@21648 9 WEB_SITE="http://www.ossp.org/pkg/lib/uuid/"
Hans-G?nter@21648 10
Hans-G?nter@21648 11 SOURCE="uuid"
pascal@17531 12 TARBALL="$SOURCE-$VERSION.tar.gz"
Hans-G?nter@21648 13 #WGET_URL="ftp://ftp.ossp.org/pkg/lib/$SOURCE/$TARBALL"
Hans-G?nter@21648 14 WGET_URL="http://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/$SOURCE/$TARBALL"
pascal@17531 15
pascal@17531 16 # Rules to configure and make the package.
pascal@17531 17 compile_rules()
pascal@17531 18 {
Hans-G?nter@21648 19 ./configure \
Hans-G?nter@21648 20 --prefix=/usr \
Hans-G?nter@21648 21 --mandir=/usr/share/man \
pascal@17531 22 $CONFIGURE_ARGS &&
pascal@17531 23 make &&
pascal@17531 24 make DESTDIR=$DESTDIR install
pascal@17531 25 }
pascal@17531 26
pascal@17531 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17531 28 genpkg_rules()
pascal@17531 29 {
pascal@17531 30 mkdir -p $fs/usr/lib
Hans-G?nter@21648 31
Hans-G?nter@21648 32 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21648 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@17531 34 }