summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrent s2016-11-21 01:14:58 -0500
committerbrent s2016-11-21 01:14:58 -0500
commitfe34edbfc13b8765cde55267477b79aa20a32cec (patch)
tree557a4a2f1f2a834030efd162ca4cdd25506f8d3b
parent65ac4d7edd23ad9b42f418d720233864d2e0c365 (diff)
downloadaur-fe34edbfc13b8765cde55267477b79aa20a32cec.tar.gz
updating notes- this project currently does not build due to a library bug in python
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD12
2 files changed, 13 insertions, 14 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7ea988dff5a8..961d3de0948e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,14 @@
-# Generated by aurpkgs
-# Mon Nov 21 06:10:08 UTC 2016
+# Generated by mksrcinfo v8
+# Mon Nov 21 06:14:58 UTC 2016
pkgbase = bdisk-git
- pkgdesc = An easy liveCD creator built in python. Supports hybrid ISOs/USB, iPXE, and UEFI
- pkgver = False
- pkgrel = 1
+ pkgdesc = An easy liveCD creator built in python. Supports hybrid ISOs/USB, iPXE, and UEFI (undergoing rewrite)
+ pkgver = 0.0001
+ pkgrel = 2
url = https://bdisk.square-r00t.net
arch = i686
arch = x86_64
license = GPL3
+ makedepends = python
depends = python
depends = dosfstools
depends = gcc-multilib
@@ -18,8 +19,8 @@ pkgbase = bdisk-git
depends = rsync
depends = squashfs-tools
depends = syslinux
- source = bdisk::gitgit://git.square-r00t.net/bdisk.git
- sha512sums = SKIP
+ source = bdisk::git+git://git.square-r00t.net/bdisk.git
sha512sums = SKIP
pkgname = bdisk-git
+
diff --git a/PKGBUILD b/PKGBUILD
index cca1f1c366b0..475b285f6be9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,8 +4,8 @@ validpgpkeys=('748231EBCBD808A14F5E85D28C004C2F93481F6B')
# News updates for packages can be followed at https://devblog.square-r00t.net
pkgname=bdisk-git
pkgver=0.0001
-pkgrel=1
-pkgdesc="An easy liveCD creator built in python. Supports hybrid ISOs/USB, iPXE, and UEFI"
+pkgrel=2
+pkgdesc="An easy liveCD creator built in python. Supports hybrid ISOs/USB, iPXE, and UEFI (undergoing rewrite)"
arch=( 'i686' 'x86_64' )
url="https://bdisk.square-r00t.net"
license=( 'GPL3' )
@@ -15,7 +15,7 @@ _pkgname=bdisk
install=
changelog=
noextract=()
-source=("bdisk::gitgit://git.square-r00t.net/bdisk.git")
+source=("bdisk::git+git://git.square-r00t.net/bdisk.git")
# see https://wiki.archlinux.org/index.php/VCS_package_guidelines#Git_Submodules if you require git submodules
sha512sums=('SKIP')
pkgver() {
@@ -37,10 +37,8 @@ pkgver() {
#)
}
build() {
- cd "${srcdir}/${_pkgname}/src"
- make prefix=${pkgdir}/usr
+ echo "TODO: This package doesn't install in a meaningful way. However, it will soon be a python package and CLI utility."
}
package() {
- install -D -m755 ${srcdir}/${_pkgname}/src/${_pkgname} ${pkgdir}/usr/bin/${_pkgname}
- install -D -m644 ${srcdir}/${_pkgname}/docs/README.html.en ${pkgdir}/usr/share/doc/${_pkgname}/README.html
+ echo "TODO: This package doesn't install in a meaningful way. However, it will soon be a python package and CLI utility."
}