wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="ossp-uuid"
4 VERSION="1.6.2"
5 CATEGORY="base-system"
6 SHORT_DESC="Universally Unique Identifier tools"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://www.ossp.org/pkg/lib/uuid/"
11 SOURCE="uuid"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 #WGET_URL="ftp://ftp.ossp.org/pkg/lib/$SOURCE/$TARBALL"
14 WGET_URL="http://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/$SOURCE/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }