wok-next view libxdg-basedir/receipt @ rev 20459

Combine receipts
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 02 13:45:43 2018 +0200 (2018-03-02)
parents 3a9ec79012ba
children 4396aed7eb01
line source
1 # SliTaz package receipt.
3 PACKAGE="libxdg-basedir"
4 VERSION="1.2.0"
5 CATEGORY="development"
6 SHORT_DESC="Implements functions for the XDG Base Directory specification."
7 MAINTAINER="mallory@sweetpeople.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/devnev/libxdg-basedir"
11 WGET_URL="https://github.com/devnev/$PACKAGE/archive/$TARBALL"
13 BUILD_DEPENDS="wget autoconf automake libtool"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 unset CFLAGS
19 ./autogen.sh \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }