void-packages/srcpkgs/tabbed-git/template

37 lines
857 B
Plaintext

# Template file for 'tabbed-git'
pkgname=tabbed-git
version=20131230
revision=1
build_style=gnu-makefile
make_build_args="INCS=-I. LIBS=-lX11"
makedepends="libX11-devel"
short_desc="Simple generic tabbed fronted to xembed aware applications"
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
license="MIT"
homepage="http://tools.suckless.org/tabbed/"
do_fetch() {
local url="git://git.suckless.org/tabbed"
msg_normal "Fetching source from $url ...\n"
git clone ${url} ${pkgname}-${version}
}
pre_build() {
cp ${FILESDIR}/config.h config.h
sed -i 's/CPPFLAGS =/CPPFLAGS +=/g' config.mk
sed -i 's/CFLAGS =/CFLAGS +=/g' config.mk
sed -i 's/LDFLAGS =/LDFLAGS +=/g' config.mk
}
post_install() {
vinstall LICENSE 644 usr/share/licenses/$pkgname
}
tabbed-git_package() {
provides="tabbed-${version}"
replaces="tabbed>=0"
pkg_install() {
vmove all
}
}