wok view libhangul/receipt @ rev 19195

Add: BVI. Fast and lightweight binary (hex) editor.
author Leonardo Laporte <hackdorte@sapo.pt>
date Mon Jun 06 10:28:32 2016 -0300 (2016-06-06)
parents 4d4c60f7bf10
children eeba7ab1dffe
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 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://kldp.net/projects/hangul"
11 WGET_URL="http://libhangul.googlecode.com/files/$TARBALL"
13 DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --datadir=/usr/lib \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/usr/lib/libhangul $fs/usr/lib
34 }