blob: 212951146234752aa5d0aea0d0a530d090b41550 (
plain) (
tree)
|
|
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
# for more information on packaging from GIT sources.
# Maintainer: Mattias Andrée <maandree@operamail.com>
pkgname=adjbacklight-git
pkgver=20121116
pkgrel=2
pkgdesc="Convient method for adjusting the backlight on your portable computer"
arch=('any')
url="https://github.com/maandree/adjbacklight"
license=('GPL3')
depends=('java-runtime>=6')
makedepends=('git' 'java-environment>=6' 'bash')
provides=('adjbacklight')
conflicts=('adjbacklight')
_gitroot=https://github.com/maandree/adjbacklight.git
_gitname=adjbacklight
build() {
cd "$srcdir"
msg "Connecting to GIT server...."
if [[ -d "$_gitname" ]]; then
cd "$_gitname" && git pull origin
msg "The local files are updated."
else
git clone "$_gitroot" "$_gitname"
fi
msg "GIT checkout done or server timeout"
msg "Starting build..."
rm -rf "$srcdir/$_gitname-build"
git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
cd "$srcdir/$_gitname-build"
make -B DESTDIR="$pkgdir/"
}
package() {
cd "$srcdir/$_gitname-build"
make DESTDIR="$pkgdir/" install
}
|