mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
21 lines
651 B
Bash
21 lines
651 B
Bash
# $Id: PKGBUILD 36980 2009-04-29 06:48:31Z eric $
|
|
# Contributor: Jochem Kossen <j.kossen@home.nl>
|
|
|
|
pkgname=docker
|
|
pkgver=1.5
|
|
pkgrel=4
|
|
pkgdesc="Docker is a docking application (WindowMaker dock app) which acts as a system tray for KDE and GNOME2."
|
|
arch=(i686 x86_64)
|
|
url="http://icculus.org/openbox/2/docker/"
|
|
license=('GPL')
|
|
depends=('glibc' 'glib2' 'libx11')
|
|
source=(http://icculus.org/openbox/2/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('349320bebd43babb8b43e11c7aae0293')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
install -d $pkgdir/usr/bin || return 1
|
|
make || return 1
|
|
make PREFIX=$pkgdir/usr install || return 1
|
|
}
|
|
# vim: ts=2 sw=2 et ft=sh
|