blob: 0fce041d545afb0d10f3411a7a7a194e67869b68 (
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 # Depends on: xorg-libxaw
5
6 name=xmessage
7 version=1.0.5
8 release=1
9 source=(https://xorg.freedesktop.org/releases/individual/app/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|