41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #/usr/bin/env bash
 | |
| 
 | |
| pkgname="filebrowser"
 | |
| arch="amd64"
 | |
| pkgver="2.27.0"
 | |
| pkgrel=2
 | |
| pkgdesc="Web File Browser"
 | |
| maintainer="Leafee98 <me@leafee98.com>"
 | |
| url="https://github.com/filebrowser/filebrowser"
 | |
| 
 | |
| _architecture="linux-amd64"
 | |
| _tar_name="${_architecture}-filebrowser"
 | |
| 
 | |
| source=(
 | |
|     "${_tar_name}-${pkgver}.tar.gz::https://github.com/filebrowser/filebrowser/releases/download/v${pkgver}/${_tar_name}.tar.gz"
 | |
|     "filebrowser.service::materials/filebrowser.service"
 | |
| )
 | |
| 
 | |
| function package {
 | |
|     install -Dm755 ${srcdir}/filebrowser   ${pkgdir}/usr/bin/filebrowser
 | |
| 
 | |
| 	install -Dm644 ${srcdir}/CHANGELOG.md  ${pkgdir}/usr/share/filebrowser/CHANGELOG.md
 | |
| 	install -Dm644 ${srcdir}/LICENSE       ${pkgdir}/usr/share/filebrowser/LICENSE
 | |
| 	install -Dm644 ${srcdir}/README.md     ${pkgdir}/usr/share/filebrowser/README.md
 | |
| 
 | |
| 	install -Dm644 ${srcdir}/filebrowser.service        ${pkgdir}/usr/lib/systemd/system/filebrowser.service
 | |
| }
 | |
| 
 | |
| function debian_postinst {
 | |
|     cat << EOF
 | |
| #!/usr/bin/env bash
 | |
| adduser --system --group filebrowser
 | |
| 
 | |
| systemctl daemon-reload
 | |
| 
 | |
| if systemctl is-active --quiet filebrowser.service ; then
 | |
|     systemctl restart filebrowser.service
 | |
| fi
 | |
| EOF
 | |
| }
 | 
