add hs9001 package
This commit is contained in:
parent
2cf52365f1
commit
c76b9cf7b5
14
build/hs9001/build
Executable file
14
build/hs9001/build
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
source ../functions.bash
|
||||
if [ $# -ne 1 ] ; then
|
||||
echo "Usage: $0 poolpath" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
set -e
|
||||
|
||||
TAG="_auto_"
|
||||
BUILDDIR=$(mktemp -d)
|
||||
OUTPUT_DIR="$1"
|
||||
|
||||
build_git_repo "$BUILDDIR" "https://github.com/quitesimpleorg/hs9001" hs9001 "$TAG" "$OUTPUT_DIR"
|
||||
|
5
build/hs9001/debian/changelog
Normal file
5
build/hs9001/debian/changelog
Normal file
@ -0,0 +1,5 @@
|
||||
hs9001 (1.0) unstable; urgency=medium
|
||||
|
||||
* Initial Release.
|
||||
|
||||
-- quitesimple.org repo management department ;-) <repo@quitesimple.org> Tue, 18 Aug 2020 18:17:03 +0200
|
12
build/hs9001/debian/control
Normal file
12
build/hs9001/debian/control
Normal file
@ -0,0 +1,12 @@
|
||||
Source: hs9001
|
||||
Section: unknown
|
||||
Priority: optional
|
||||
Maintainer: quitesimple.org repo management department ;-) <repo@quitesimple.org>
|
||||
Build-Depends: golang-go, debhelper-compat (= 12)
|
||||
Standards-Version: 4.4.1
|
||||
Homepage: <https://github.com/quitesimpleorg/hs9001>
|
||||
|
||||
Package: hs9001
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Bash history put into sqlite so it can be searched
|
1
build/hs9001/debian/hs9001.install
Normal file
1
build/hs9001/debian/hs9001.install
Normal file
@ -0,0 +1 @@
|
||||
hs9001 /usr/bin/
|
8
build/hs9001/debian/rules
Executable file
8
build/hs9001/debian/rules
Executable file
@ -0,0 +1,8 @@
|
||||
#!/usr/bin/make -f
|
||||
%:
|
||||
dh $@
|
||||
|
||||
override_dh_auto_build:
|
||||
go build -ldflags "-s -w"
|
||||
|
||||
override_dh_auto_install:
|
1
build/hs9001/debian/source/format
Normal file
1
build/hs9001/debian/source/format
Normal file
@ -0,0 +1 @@
|
||||
3.0 (native)
|
Loading…
Reference in New Issue
Block a user