summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5f52765a1ff5917c764f44d47cba7040500121d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Phosphenius <luca dot kredel at web dot de>
pkgname=lerpc
pkgver=0.1.0
pkgrel=1
pkgdesc="Does linear interpolation (lerp) between HTML color codes"
arch=('any')
url="https://github.com/Phosphenius/lerpc"
license=('MIT')
source=("https://github.com/Phosphenius/$pkgname/archive/v$pkgver.tar.gz")
md5sums=('ff9d3408f3be689285566ea2046ae4d5')

build() {
  cd "$pkgname-$pkgver"

  make
}

package() {
  cd "$pkgname-$pkgver"

  make DESTDIR="$pkgdir/" install
}