summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 25de07bc87a292da2e9d1babe0fed3bfaa13405c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=libxpm-git
pkgver=3.5.13.r2.g83e5427
pkgrel=1
pkgdesc="X pixmap (XPM) image file format library"
arch=('i686' 'x86_64')
url="https://xorg.freedesktop.org/wiki/"
license=('custom')
depends=('glibc' 'libxext' 'libxt')
makedepends=('git' 'xorg-util-macros')
provides=('libxpm')
conflicts=('libxpm')
options=('staticlibs')
source=("git+https://gitlab.freedesktop.org/xorg/lib/libxpm.git")
sha256sums=('SKIP')


pkgver() {
  cd "libxpm"

  git describe --long --tags | sed 's/^libXpm-//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "libxpm"

  NOCONFIGURE=1 ./autogen.sh
  ./configure \
    --prefix="/usr"
  make
}

package() {
  cd "libxpm"

  make DESTDIR="$pkgdir" install
  install -Dm644 "COPYING" -t "$pkgdir/usr/share/licenses/libxpm"
}