mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
804 B
Bash
22 lines
804 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Eric Belanger <belanger@astro.umontreal.ca>
|
|
# Contributor: Hugo Ideler
|
|
|
|
pkgname=adesklet-asimpleclock
|
|
pkgver=0.0.3
|
|
pkgrel=6
|
|
pkgdesc="A simple little desklet that displays a text-based digital clock."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.pirnat.com/geek/adesklets.shtml"
|
|
license=("GPL")
|
|
depends=('adesklets')
|
|
groups=('adesklet-desklets')
|
|
source=(http://www.pirnat.com/geek/asimpleclock-$pkgver.tar.bz2)
|
|
md5sums=('98a18f9e7e336ab4b42bf89ba05ccc79')
|
|
|
|
build() {
|
|
mkdir -p $startdir/pkg/usr/share/adesklets/asimpleclock
|
|
cp -a $startdir/src/asimpleclock-$pkgver/* $startdir/pkg/usr/share/adesklets/asimpleclock/
|
|
chown root:adesklets $startdir/pkg/usr/share/adesklets/asimpleclock
|
|
chmod 775 $startdir/pkg/usr/share/adesklets/asimpleclock
|
|
}
|