summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8286fe0bdc1d01184e4e469efb798d3f9438d9a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Kohei Suzuki <eagletmt@gmail.com>
pkgname=envchain
pkgver=1.0.1
pkgrel=3
pkgdesc='Set environment variables with D-Bus secret service'
arch=('i686' 'x86_64')
url='https://github.com/sorah/envchain'
license=('MIT')
depends=('readline' 'libsecret')
source=("https://github.com/sorah/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('09af1fe1cfba3719418f90d59c29c081e1f22b38249f0110305b657bd306e9ae')

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

package() {
  cd "$pkgname-$pkgver"
  install -Dm755 envchain "$pkgdir/usr/bin/envchain"
}

# vim: set ft=sh: