mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
22 lines
779 B
Bash
22 lines
779 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Eric Belanger <belanger@astro.umontreal.ca>
|
|
# Contributor: FUBAR
|
|
|
|
pkgname=adesklet-calendar
|
|
pkgver=0.5.3
|
|
pkgrel=6
|
|
pkgdesc="A simple desklet that displays a calendar."
|
|
arch=('i686' 'x86_64')
|
|
url="http://adesklets.sourceforge.net/desklets.html"
|
|
license=("GPL")
|
|
depends=('adesklets')
|
|
groups=('adesklet-desklets')
|
|
source=(http://downloads.sourceforge.net/sourceforge/adesklets/Calendar-$pkgver.tar.bz2)
|
|
md5sums=('c692064b27f49853fdabf530200776d3')
|
|
|
|
build() {
|
|
mkdir -p $startdir/pkg/usr/share/adesklets/Calendar
|
|
cp -a $startdir/src/Calendar-$pkgver/* $startdir/pkg/usr/share/adesklets/Calendar/
|
|
chown root:adesklets $startdir/pkg/usr/share/adesklets/Calendar
|
|
chmod 775 $startdir/pkg/usr/share/adesklets/Calendar
|
|
}
|