wok annotate kilo/receipt @ rev 19512
busybox: add hd (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Nov 22 15:47:28 2016 +0100 (2016-11-22) |
parents | |
children | d8c511e24c20 |
rev | line source |
---|---|
paul@19332 | 1 # SliTaz package receipt. |
paul@19332 | 2 |
paul@19332 | 3 PACKAGE="kilo" |
paul@19332 | 4 VERSION="15072016" |
paul@19332 | 5 CATEGORY="office" |
paul@19332 | 6 SHORT_DESC="A text editor in less than 1000 LOC with syntax highlight and search." |
paul@19332 | 7 MAINTAINER="paul@slitaz.org" |
paul@19332 | 8 LICENSE="BSD" |
paul@19332 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
paul@19332 | 10 WEB_SITE="https://github.com/antirez/kilo" |
paul@19332 | 11 WGET_URL="git|git://github.com/antirez/kilo" |
paul@19332 | 12 |
paul@19332 | 13 #DEPENDS="" |
paul@19332 | 14 BUILD_DEPENDS="git bzip2" |
paul@19332 | 15 |
paul@19332 | 16 # Rules to configure and make the package. |
paul@19332 | 17 compile_rules() |
paul@19332 | 18 { |
paul@19332 | 19 make |
paul@19332 | 20 } |
paul@19332 | 21 |
paul@19332 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@19332 | 23 genpkg_rules() |
paul@19332 | 24 { |
paul@19332 | 25 mkdir -p $fs/usr/bin |
paul@19332 | 26 cp -a $src/$PACKAGE $fs/usr/bin |
paul@19332 | 27 } |
paul@19332 | 28 |