Open benwaffle opened 7 years ago
This should fix it
diff --git a/PKGBUILD b/PKGBUILD index 8b095d5..6e059f1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -16,7 +16,7 @@ source=("https://github.com/valum-framework/valum/archive/v${pkgver}.tar.gz") md5sums=('e89b49d65d8130c7df051d91d49b9279') build() { - cd ${pkgname} + cd ${pkgname}-${pkgver} [ -d build ] && rm -rf build mkdir build && cd build meson --prefix=/usr .. @@ -24,9 +24,9 @@ build() { } package() { - cd ${pkgname}/build + cd ${pkgname}-${pkgver}/build DESTDIR=${pkgdir} ninja install - install -Dm644 ${srcdir}/valum/COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm644 ${srcdir}/${pkgname}-${pkgver}/COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } # vim:set ts=2 sw=2 et:
@arrufat
This should fix it