19 lines
439 B
Plaintext
19 lines
439 B
Plaintext
# Description: A program to display messages from the command line, a file or standard input in a window.
|
|
# URL: http://xorg.freedesktop.org/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: xorg-libxaw
|
|
|
|
name=xmessage
|
|
version=1.0.6
|
|
release=1
|
|
source=(https://xorg.freedesktop.org/releases/individual/app/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|