Compare commits

...

8 commits

Author SHA1 Message Date
17b3fe7b1f
upgpkg: ntfs2btrfs-git 20220812.r10.gb8ae0f8-1
* PKGBUILD refactor to be same as non-git package
* new versioning scheme
2023-04-19 22:50:00 +02:00
d97a8b2abd Add 'ntfs2btrfs-git/' from commit 'e787c7fc8b'
git-subtree-dir: ntfs2btrfs-git
git-subtree-mainline: 0df4b7ff3a
git-subtree-split: e787c7fc8b
2023-04-19 22:45:28 +02:00
Νικόλαος Κυριάκος Φυτίλης
e787c7fc8b pkgver remove tabs 2021-10-03 14:46:21 +03:00
Νικόλαος Κυριάκος Φυτίλης
ba5449332d fix sbin exists in fs 2021-09-25 11:08:44 +03:00
Νικόλαος Κυριάκος Φυτίλης
a69158fd00 asdasdad 2020-12-21 14:40:55 +02:00
Νικόλαος Κυριάκος Φυτίλης
a0cbd68b11 oops 2020-12-21 14:35:42 +02:00
Νικόλαος Κυριάκος Φυτίλης
52456070b7 fix ignore 2020-12-21 14:27:39 +02:00
Νικόλαος Κυριάκος Φυτίλης
c729c1a8e1 init 2020-12-21 14:16:05 +02:00
2 changed files with 55 additions and 0 deletions

20
ntfs2btrfs-git/.SRCINFO Normal file
View file

@ -0,0 +1,20 @@
pkgbase = ntfs2btrfs-git
pkgdesc = In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs
pkgver = 20220812.r10.gb8ae0f8
pkgrel = 1
url = https://github.com/maharmstone/ntfs2btrfs
arch = x86_64
license = GPL2
makedepends = git
makedepends = cmake
makedepends = pkgconf
depends = fmt
depends = zlib
depends = lzo
depends = zstd
provides = ntfs2btrfs
conflicts = ntfs2btrfs
source = git+https://github.com/maharmstone/ntfs2btrfs.git
sha256sums = SKIP
pkgname = ntfs2btrfs-git

35
ntfs2btrfs-git/PKGBUILD Normal file
View file

@ -0,0 +1,35 @@
# Maintainer: Manuel Hüsers <aur@huesers.de>
# Contributor: N Fytilis <n-fit AT live.com>
pkgname=ntfs2btrfs-git
pkgver=20220812.r10.gb8ae0f8
pkgrel=1
pkgdesc="In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs"
arch=('x86_64')
url="https://github.com/maharmstone/${pkgname%-git}"
license=('GPL2')
depends=('fmt' 'zlib' 'lzo' 'zstd')
makedepends=('git' 'cmake' 'pkgconf')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/release-//g;s/-/./g'
}
build() {
cmake -B build -S "${pkgname%-git}" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_SBINDIR=bin \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_TESTING=OFF
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}