From a0cbd68b11e5444e626603eed1754e6b770bb2e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=9D=CE=B9=CE=BA=CF=8C=CE=BB=CE=B1=CE=BF=CF=82=20=CE=9A?= =?UTF-8?q?=CF=85=CF=81=CE=B9=CE=AC=CE=BA=CE=BF=CF=82=20=CE=A6=CF=85=CF=84?= =?UTF-8?q?=CE=AF=CE=BB=CE=B7=CF=82?= Date: Mon, 21 Dec 2020 14:35:42 +0200 Subject: [PATCH] oops --- .SRCINFO | 2 +- PKGBUILD | 14 +++++--------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index bd84627..c4e9323 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -10,5 +10,5 @@ pkgbase = ntfs2btrfs source = git+https://github.com/maharmstone/ntfs2btrfs md5sums = SKIP -pkgname = ntfs2btrfs +pkgname = ntfs2btrfs-git diff --git a/PKGBUILD b/PKGBUILD index 9e75b9f..4744d3c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,10 +1,6 @@ -# This is an example PKGBUILD file. Use this as a start to creating your own, -# and remove these comments. For more information, see 'man PKGBUILD'. -# NOTE: Please fill out the license field for your package! If it is unknown, -# then please put 'unknown'. - -# Maintainer: Your Name -pkgname=ntfs2btrfs +# Maintainer: N Fytilis +pkgbase=ntfs2btrfs +pkgname=$pkgbase-git pkgver=1 pkgrel=1 epoch= @@ -18,7 +14,7 @@ source=("git+https://github.com/maharmstone/ntfs2btrfs") md5sums=(SKIP) build() { - cd "$pkgname" + cd "$pkgbase" mkdir b || true cd b cmake -DCMAKE_INSTALL_PREFIX='/usr' .. @@ -26,6 +22,6 @@ build() { } package() { - cd "$pkgname/b" + cd "$pkgbase/b" make DESTDIR="$pkgdir/" install }