diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-30 23:00:12 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-30 23:00:12 -0400 |
commit | 0f7fc864d98d3e8a852d3a6a835ae3331fde1bad (patch) | |
tree | 24b4ac4b7a476b0bb1607476531c5ba1a5f63a7e /xorg-xproto | |
parent | 39c272221a8baf3b3f2768d9de4f61abea57cf1f (diff) | |
download | spm_packages-0f7fc864d98d3e8a852d3a6a835ae3331fde1bad.tar.gz |
Current state
Diffstat (limited to 'xorg-xproto')
-rw-r--r-- | xorg-xproto/build.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/xorg-xproto/build.sh b/xorg-xproto/build.sh new file mode 100644 index 0000000..841a72a --- /dev/null +++ b/xorg-xproto/build.sh @@ -0,0 +1,26 @@ +#!/bin/bash +name=xorg-xproto +shortname=xorgproto +version=2018.2 +revision=0 +sources=( + "https://www.x.org/archive/individual/proto/${shortname}-${version}.tar.gz" +) +build_depends=( +) +depends=( +) + +function prepare() { + tar xf ${shortname}-${version}.tar.gz + cd ${shortname}-${version} +} + +function build() { + ./configure --prefix=${_prefix} + make -j${_maxjobs} +} + +function package() { + make install DESTDIR="${_pkgdir}" +} |