void-packages/srcpkgs/parted/template

33 lines
930 B
Bash
Raw Normal View History

# Template file for 'parted'
pkgname=parted
2014-08-02 15:47:39 +00:00
version=3.2
2015-06-02 08:31:54 +00:00
revision=4
build_style=gnu-configure
# parted wants off_t as 64bit type
2015-06-02 08:31:54 +00:00
configure_args="ac_cv_sizeof_off_t=8 --sbindir=/usr/bin"
hostmakedepends="pkg-config"
makedepends="libuuid-devel libblkid-devel ncurses-devel readline-devel device-mapper-devel"
short_desc="The GNU Parted disk partition resizing program"
2011-05-26 08:52:41 +00:00
homepage="http://www.gnu.org/software/parted/"
2012-03-20 06:53:27 +00:00
license="GPL-3"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
distfiles="${GNU_SITE}/$pkgname/$pkgname-$version.tar.xz"
2014-08-02 15:47:39 +00:00
checksum=858b589c22297cacdf437f3baff6f04b333087521ab274f7ab677cb8c6bb78e4
2014-02-27 15:04:32 +00:00
libparted_package() {
short_desc+=" - shared library"
pkg_install() {
2014-02-21 16:11:05 +00:00
vmove "usr/lib/*.so.*"
}
}
libparted-devel_package() {
2014-02-21 16:11:05 +00:00
depends="libparted>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
2014-02-21 16:11:05 +00:00
vmove "usr/lib/*.so"
}
}