wok-next annotate nbd/receipt @ rev 20634

oxine: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 27 12:51:30 2018 +0200 (2018-04-27)
parents d43bf7aae921
children d5aab818505e
rev   line source
al@20513 1 # SliTaz package receipt v2.
pascal@15213 2
pascal@15213 3 PACKAGE="nbd"
pascal@15213 4 VERSION="3.3"
pascal@15213 5 CATEGORY="network"
al@20513 6 SHORT_DESC="Remote block devices over a TCP/IP network"
pascal@15213 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15213 8 LICENSE="GPL2"
al@20513 9 WEB_SITE="http://nbd.sourceforge.net/"
al@20513 10
pascal@15213 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@15213 12 WGET_URL="$SF_MIRROR/nbd/$TARBALL"
pascal@15213 13
al@20513 14 BUILD_DEPENDS="glib-dev pcre-dev"
pascal@15213 15
al@20513 16 compile_rules() {
al@20534 17 ./configure $CONFIGURE_ARGS &&
pascal@15213 18 make &&
al@20513 19 make DESTDIR=$DESTDIR install || return 1
al@20513 20
al@20513 21 touch $install/etc/nbd-server/config
pascal@15213 22 }
pascal@15213 23
al@20513 24 genpkg_rules() {
al@20513 25 copy @std
al@20513 26 DEPENDS="glib pcre"
al@20513 27 SUGGESTED="linux-nbd"
al@20513 28 CONFIG_FILES="/etc/nbd-server/"
pascal@15213 29 }