18 lines
364 B
Plaintext
18 lines
364 B
Plaintext
|
# Description: simple clock for Xorg
|
||
|
# URL: https://www.x.org/pub/individual/app
|
||
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
||
|
# Depends on: xorg-server
|
||
|
|
||
|
name=xclock
|
||
|
version=1.0.9
|
||
|
release=1
|
||
|
source=(ftp://ftp.x.org/pub/individual/app/$name-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd "$name-$version"
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
}
|