wok-next view libzen/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents 1ea9701ce3ca
children 757d032c55c7
line source
1 # SliTaz package receipt.
3 PACKAGE="libzen"
4 VERSION="0.4.32"
5 CATEGORY="libdevel"
6 SHORT_DESC="ZenLib - small C++ derivative class to have a simpler life"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="zlib/libpng"
9 WEB_SITE="http://mediaarea.net/"
10 TARBALL="${PACKAGE}_$VERSION.tar.bz2"
11 WGET_URL="${WEB_SITE}download/source/$PACKAGE/$VERSION/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd Project/GNU/Library
20 ./autogen.sh
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 $CONFIGURE_ARGS &&
25 make && make install
27 sed -i -e "s|$src/Project/GNU/Library|/usr/lib|" -e 's|/.libs||' \
28 $install/usr/bin/libzen-config
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $install/* $fs
35 }