diff --git a/srcpkgs/frankenwm-git/template b/srcpkgs/frankenwm-git/template deleted file mode 100644 index a9c37ef25f1..00000000000 --- a/srcpkgs/frankenwm-git/template +++ /dev/null @@ -1,23 +0,0 @@ -# Template file for 'frankenwm-git' -pkgname=frankenwm-git -version=20141213 -revision=1 -hostmakedepends="pkg-config git" -makedepends="libxcb-devel xcb-util-devel xcb-util-wm-devel xcb-util-keysyms-devel" -build_style=gnu-makefile -short_desc="XCB dynamic tiling WM" -maintainer="Ypnose " -license="MIT" -homepage="https://github.com/sulami/FrankenWM" -provides="frankenwm-${version}_${revision}" -replaces="frankenwm>=0" - -do_fetch() { - local url="git://github.com/sulami/frankenwm" - msg_normal "Fetching source from $url ...\n" - git clone ${url} ${pkgname}-${version} -} - -post_install() { - vinstall LICENSE 644 usr/share/licenses/frankenwm -} diff --git a/srcpkgs/frankenwm/template b/srcpkgs/frankenwm/template new file mode 100644 index 00000000000..c1c9ebb74e5 --- /dev/null +++ b/srcpkgs/frankenwm/template @@ -0,0 +1,28 @@ +# Template file for 'frankenwm' +pkgname=frankenwm +_pkgname=FrankenWM +version=1.0.1 +revision=1 +hostmakedepends="pkg-config" +makedepends="libxcb-devel xcb-util-devel xcb-util-wm-devel xcb-util-keysyms-devel" +build_style=gnu-makefile +make_build_args="INCS=-I." +short_desc="XCB dynamic tiling WM" +maintainer="Ypnose " +license="MIT" +homepage="https://github.com/sulami/${_pkgname}" +distfiles="https://github.com/sulami/${_pkgname}/archive/${version}.tar.gz" +checksum="074538b165645689016110653eadfd6f363b9ff2dd914f9a0362571049f80544" +replaces="frankenwm-git>=0" +wrksrc="${_pkgname}-${version}" + +pre_build() { + sed -i 's|^CPPFLAGS *+=|override CPPFLAGS +=|g' Makefile + sed -i 's|^CFLAGS *+=|override CFLAGS +=|g' Makefile + sed -i 's|^LDFLAGS *+=|override LDFLAGS +=|g' Makefile + sed -i 's| -Os||g' Makefile +} + +post_install() { + vlicense LICENSE +}