wok-undigest view ldm/receipt @ rev 1022

Working ManaPlus
author Brenton Scott <admin@trixarian.net>
date Mon May 27 22:38:34 2013 +0200 (2013-05-27)
parents d9c6b4352bd0
children 135ad0e1fc7d
line source
1 # SliTaz package receipt.
3 PACKAGE="ldm"
4 VERSION="0.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="l(ightweight) d(evice) m(ounter)."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://github.com/LemonBoy/ldm"
10 WGET_URL="https://github.com/LemonBoy/ldm/tarball/v${VERSION}"
12 DEPENDS="udev"
13 BUILD_DEPENDS="udev-dev util-linux-mount-dev util-linux-blkid wget"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make ldm.o &&
20 cc -o ldm ldm.o -ludev -lmount -lblkid &&
21 make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }