blob: baa98cfde1c9c834b3d54d83037f901a6eb7af57 (
plain)
1 # Description: A program to display messages from the command line, a file or standard input in a window.
2 # URL: http://xorg.freedesktop.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Danny Rawlins, crux at romster dot me
5 # Depends on: xorg-libxaw
6
7 name=xmessage
8 version=1.0.3
9 release=1
10 source=(http://xorg.freedesktop.org/releases/individual/app/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure \
16 --prefix=/usr \
17 --mandir=/usr/man
18
19 make
20 make DESTDIR=$PKG install
21 }
|