mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
24 lines
603 B
Bash
24 lines
603 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Thayer Williams <thayer@archlinux.org>
|
|
# Contributor: Thayer Williams <thayer@archlinux.org>
|
|
|
|
pkgname=lal
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="A simple dockapp to display the date and/or time"
|
|
arch=('i686' 'x86_64')
|
|
url="http://projects.l3ib.org/lal/"
|
|
license=('GPL')
|
|
depends=('libxft')
|
|
makedepends=('gcc')
|
|
source=(http://projects.l3ib.org/lal/files/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('cc68dfb7412ce2e8e194d88394b425b7')
|
|
|
|
build() {
|
|
cd "$srcdir"
|
|
|
|
make || return 1
|
|
install -D -m755 $srcdir/lal $pkgdir/usr/bin/lal
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|