32 lines
909 B
Text
32 lines
909 B
Text
# Template file for 'thinglaunch-git'
|
|
pkgname=thinglaunch-git
|
|
version=20140820
|
|
revision=1
|
|
hostmakedepends="git"
|
|
makedepends="libX11-devel"
|
|
build_style=gnu-makefile
|
|
short_desc="A simple command and password prompter for X11"
|
|
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
|
license="MIT"
|
|
homepage="http://git.r-36.net/thinglaunch/"
|
|
provides="thinglaunch-${version}_${revision}"
|
|
replaces="thinglaunch>=0"
|
|
|
|
do_fetch() {
|
|
local url="git://git.r-36.net/thinglaunch"
|
|
msg_normal "Fetching source from $url ...\n"
|
|
git clone ${url} ${pkgname}-${version}
|
|
}
|
|
|
|
pre_build() {
|
|
sed -i 's| -I/usr/include||g' config.mk
|
|
sed -i 's| -L/usr/lib||g' config.mk
|
|
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/thinglaunch
|
|
vinstall LICENSE.orig 644 usr/share/licenses/thinglaunch
|
|
}
|