18 lines
363 B
Plaintext
18 lines
363 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.1.1
|
|
release=1
|
|
source=(ftp://ftp.x.org/pub/individual/app/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd "$name-$version"
|
|
|
|
./configure --prefix=/usr
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|