wok view ossp-uuid/receipt @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents
children 8740ca9c3133
line source
1 # SliTaz package receipt.
3 PACKAGE="ossp-uuid"
4 SOURCE="uuid"
5 VERSION="1.6.1"
6 CATEGORY="base-system"
7 SHORT_DESC="Universally Unique Identifier tools"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="MIT"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.ossp.org/pkg/lib/uuid/"
12 WGET_URL="ftp://ftp.ossp.org/pkg/lib/$SOURCE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure --prefix=/usr \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }