wok view libhangul/receipt @ rev 13717

gmp: enable C++ support (provide libgmpxx)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Dec 20 16:06:17 2012 +0000 (2012-12-20)
parents 9a4df26cc408
children 4904e3d374a9
line source
1 # SliTaz package receipt.
3 PACKAGE="libhangul"
4 VERSION="0.1.0"
5 CATEGORY="misc"
6 SHORT_DESC="library for Hangul"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://kldp.net/projects/hangul"
11 WGET_URL="http://libhangul.googlecode.com/files/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 --datadir=/usr/lib \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 cp -a $install/usr/lib/libhangul $fs/usr/lib
32 }