35 lines
668 B
Text
35 lines
668 B
Text
|
# Template file for 'bar-git'
|
||
|
pkgname=bar-git
|
||
|
version=20132907
|
||
|
revision=1
|
||
|
makedepends="libxcb-devel"
|
||
|
short_desc="A lightweight xcb based bar"
|
||
|
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
||
|
license="MIT"
|
||
|
homepage="https://github.com/LemonBoy/bar"
|
||
|
|
||
|
nofetch=yes
|
||
|
noextract=yes
|
||
|
|
||
|
do_fetch() {
|
||
|
local url="git://github.com/LemonBoy/bar"
|
||
|
msg_normal "Fetching source from $url ...\n"
|
||
|
git clone ${url} ${pkgname}-${version}
|
||
|
}
|
||
|
|
||
|
do_build() {
|
||
|
cp ${FILESDIR}/config.h config.h
|
||
|
make CC=$CC INCS="-I." ${makejobs}
|
||
|
}
|
||
|
|
||
|
do_install() {
|
||
|
make PREFIX=/usr DESTDIR=$DESTDIR install
|
||
|
vinstall LICENSE 644 usr/share/licenses/$pkgname
|
||
|
}
|
||
|
|
||
|
bar-git_package() {
|
||
|
pkg_install() {
|
||
|
vmove usr
|
||
|
}
|
||
|
}
|