Compare commits
2 commits
39b75dfe92
...
5021f561e9
Author | SHA1 | Date | |
---|---|---|---|
5021f561e9 | |||
16ef2d96d5 |
53
packages/git/pasty-git/DEBBUILD
Normal file
53
packages/git/pasty-git/DEBBUILD
Normal file
|
@ -0,0 +1,53 @@
|
|||
#/usr/bin/env bash
|
||||
|
||||
pkgname="pasty-git"
|
||||
arch="amd64"
|
||||
pkgrel=1
|
||||
pkgver=20240312172222-39b75df
|
||||
pkgdesc="pasty is a fast and lightweight code pasting server"
|
||||
url="https://github.com/leafee98/pasty"
|
||||
maintainer="Leafee98 <me@leafee98.com>"
|
||||
|
||||
source=(
|
||||
"pasty::git+https://github.com/leafee98/pasty.git"
|
||||
"pasty.service::materials/pasty.service"
|
||||
"env::materials/env"
|
||||
)
|
||||
|
||||
function pkgver {
|
||||
echo "$(date +%Y%m%d%H%M%S)-$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
function build {
|
||||
(
|
||||
cd ${srcdir}/pasty
|
||||
go build -o pasty ./cmd/pasty/main.go
|
||||
)
|
||||
}
|
||||
|
||||
function package {
|
||||
install -Dm755 ${srcdir}/pasty/pasty ${pkgdir}/usr/lib/pasty/pasty
|
||||
install -Dm644 ${srcdir}/pasty/LICENSE ${pkgdir}/usr/share/licenses/pasty/LICENSE
|
||||
|
||||
cp -r ${srcdir}/pasty/web ${pkgdir}/usr/lib/pasty/web
|
||||
|
||||
install -Dm644 ${srcdir}/pasty.service ${pkgdir}/usr/lib/systemd/system/pasty.service
|
||||
# We haven't implement the 'conffiles', so don't create this file in case override user's config
|
||||
#install -Dm644 ${srcdir}/env ${pkgdir}/etc/pasty/env
|
||||
}
|
||||
|
||||
function debian_postinst {
|
||||
cat << 'EOF'
|
||||
#!/usr/bin/env bash
|
||||
service_name="pasty.service"
|
||||
|
||||
adduser --system --group pasty
|
||||
chown -R pasty:pasty /usr/lib/pasty
|
||||
|
||||
systemctl daemon-reload
|
||||
|
||||
if systemctl is-active --quiet ${service_name} ; then
|
||||
systemctl restart ${service_name}
|
||||
fi
|
||||
EOF
|
||||
}
|
1
packages/git/pasty-git/materials/env
Normal file
1
packages/git/pasty-git/materials/env
Normal file
|
@ -0,0 +1 @@
|
|||
# See README on https://github.com/lus/pasty
|
18
packages/git/pasty-git/materials/pasty.service
Normal file
18
packages/git/pasty-git/materials/pasty.service
Normal file
|
@ -0,0 +1,18 @@
|
|||
[Unit]
|
||||
Description=Pasty is a fast and lightweight code pasting server
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
User=pasty
|
||||
|
||||
# Here store the configs
|
||||
EnvironmentFile=/etc/pasty/env
|
||||
|
||||
# Start program here, the pasty read `./web` to find the front pages
|
||||
WorkingDirectory=/usr/lib/pasty/
|
||||
|
||||
ExecStart=/usr/lib/pasty/pasty
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
pkgname="dendrite"
|
||||
arch="amd64"
|
||||
pkgrel=2
|
||||
pkgver="0.13.6"
|
||||
pkgrel=1
|
||||
pkgver="0.13.8"
|
||||
pkgdesc="Dendrite is a second-generation Matrix homeserver written in Go!"
|
||||
url="https://github.com/matrix-org/dendrite"
|
||||
maintainer="Leafee98 <me@leafee98.com>"
|
||||
|
|
Loading…
Reference in a new issue