blob: d48e6ff2b269c94a4bb66593cffcfe0993411628 (
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
|
# Maintainer: Gyorgy Abraham <gyorgy.abraham@protonmail.com>
# Maintainer: Pavle Portic <archlinux@theedgeofrage.com>
pkgname=goose
pkgver=3.20.0
pkgrel=1
pkgdesc='Database migration tool written in Go.'
arch=('i686' 'x86_64')
url='https://github.com/pressly/goose'
license=('MIT')
depends=('go')
makedepends=('git' 'go')
source=("https://github.com/pressly/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('a368adcca9d2767800b28e2f897cfed3df978479f449908d2977e8e47435c153')
build() {
cd $pkgname-$pkgver
go build -o goose ./cmd/goose
}
package() {
cd $pkgname-$pkgver
install -Dm755 "goose" "${pkgdir}/usr/bin/goose"
}
|