Last active
December 28, 2015 18:39
-
-
Save bwrsandman/7544784 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer : Martin Wimpress <[email protected]> | |
# Contributor: Joris Steyn <[email protected]> | |
# Contributor: kens | |
pkgname=finalterm-git | |
pkgver=0.r120.728072f | |
pkgrel=1 | |
pkgdesc="A new breed of terminal emulator" | |
arch=('x86_64' 'i686') | |
url="http://finalterm.org" | |
license=('GPL3') | |
depends=('clutter>=1.12' 'clutter-gtk' 'gtk3' 'libgee' 'libkeybinder3' 'libnotify' 'mx>=1.0') | |
makedepends=('cmake' 'git' 'vala' 'intltool') | |
provides=('finalterm') | |
conflicts=('finalterm') | |
source=("git://github.com/p-e-w/finalterm.git") | |
md5sums=('SKIP') | |
install=${pkgname}.install | |
pkgver() { | |
cd "${srcdir}/${pkgname%-git}" | |
printf "0.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" | |
} | |
build() { | |
cd "${srcdir}/${pkgname%-git}" | |
cmake -DCMAKE_INSTALL_PREFIX=/usr | |
make | |
} | |
package() { | |
cd "${srcdir}/${pkgname%-git}" | |
make DESTDIR="$pkgdir" install | |
} | |
# vim:set ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment