# This is an example PKGBUILD file. Use this as a start to creating your own, # and remove these comments. For more information, see 'man PKGBUILD'. # NOTE: Please fill out the license field for your package! If it is unknown, # then please put 'unknown'. # Maintainer: Future Linux Team pkgname=libxt pkgver=1.3.0 pkgrel=1 pkgdesc="X11 toolkit intrinsics library" arch=('x86_64') url="https://xorg.freedesktop.org/" license=('custom') depends=('libsm' 'libx11') makedepends=('util-macros') source=(https://www.x.org/pub/individual/lib/libXt-${pkgver}.tar.xz) sha256sums=(52820b3cdb827d08dc90bdfd1b0022a3ad8919b57a39808b12591973b331bf91) build() { cd libXt-${pkgver} ${CONFIGURE} \ --sysconfdir=/etc \ --localstatedir=/var \ --disable-static \ --with-appdefaultdir=/etc/X11/app-defaults \ --docdir=/usr/share/doc/libXt-${pkgver} make } package() { cd libXt-${pkgver} make DESTDIR=${pkgdir} install }