blob: db0cd19461c2e8500ad328b9bff5f56c7905cc67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: Geballin - Guillaume Ballin <macniaque at free dot fr>
pkgname=ical
pkgver=3.0.4
pkgrel=1
pkgdesc="ical is an old but popular calendar package written in Tcl by Sanjay Ghemawat for Unix systems."
url="https://launchpad.net/ical-tcl"
arch=('x86_64' 'i686')
license=('GPLv2')
depends=(tcl tk)
optdepends=()
makedepends=(gcc make)
conflicts=()
replaces=()
backup=()
install=
source=("https://launchpad.net/ical-tcl/3.x/3.0.4/+download/ical-3.0.4.tar.gz")
md5sums=('24c1b726bf17964745658a5831f88554')
build() {
tar xzf ical-${pkgver}.tar.gz
cd ical-tcl
./configure --prefix=/usr
make
}
package() {
cd ical-tcl
make DESTDIR="${pkgdir}" install
}
|