diff options
Diffstat (limited to '~xihh/lyx-clasicthesis/PKGBUILD')
-rw-r--r-- | ~xihh/lyx-clasicthesis/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/~xihh/lyx-clasicthesis/PKGBUILD b/~xihh/lyx-clasicthesis/PKGBUILD new file mode 100644 index 000000000..8e63e2025 --- /dev/null +++ b/~xihh/lyx-clasicthesis/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $ +# Maintainer: Joshua Ismael Haase Hernandez <joshpar@stravy> +pkgname=lyx-clasicthesis +pkgver=3.1-beta1 +pkgrel=1 +pkgdesc="A Classic Thesis Style for LaTeX and LyX" +arch=('any') +url="https://code.google.com/p/classicthesis/" +license=('GPL') +groups=() +depends=('lyx') +source=(https://code.google.com/p/classicthesis/downloads/detail?name=ClassicThesis-LyX-v${pkgver}.zip) +md5sums=('a437079a70466adadf8f7034e02ebd85') +noextract=() + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +check() { + cd "$srcdir/$pkgname-$pkgver" + make -k check +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} |