diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-04 16:15:58 +0200 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-04 16:15:58 +0200 |
commit | ab24391fc837b2fbc501022f9635869fd9ee54a6 (patch) | |
tree | d612eef30e8a9bbf6229fccac0d8593f53d1b6f0 /wayland/Pkgfile | |
parent | 26b1573af4203c7ff995653fbb32a0420a31ed68 (diff) | |
download | contrib-ab24391fc837b2fbc501022f9635869fd9ee54a6.tar.gz contrib-ab24391fc837b2fbc501022f9635869fd9ee54a6.tar.xz |
wayland: initial commit
Diffstat (limited to 'wayland/Pkgfile')
-rw-r--r-- | wayland/Pkgfile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/wayland/Pkgfile b/wayland/Pkgfile new file mode 100644 index 000000000..cc9ab09ec --- /dev/null +++ b/wayland/Pkgfile @@ -0,0 +1,20 @@ +# Description: Wayland is intended as a simpler replacement for X +# URL: https://wayland.freedesktop.org/ +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: libffi libxml2 expat + +name=wayland +version=1.17.0 +release=1 +source=(https://wayland.freedesktop.org/releases/$name-$version.tar.xz) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --disable-static \ + --disable-documentation + make + make DESTDIR=$PKG install +} |