transmission: keep html pages of the web interface

This commit is contained in:
Juergen Daubert 2023-02-18 17:03:17 +01:00
parent 77d1668b7e
commit ebe5cf8eaa
3 changed files with 15 additions and 6 deletions

View File

@ -15,3 +15,11 @@ drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/transmission-edit.1.gz
-rw-r--r-- root/root usr/share/man/man1/transmission-remote.1.gz
-rw-r--r-- root/root usr/share/man/man1/transmission-show.1.gz
drwxr-xr-x root/root usr/share/transmission/
drwxr-xr-x root/root usr/share/transmission/public_html/
drwxr-xr-x root/root usr/share/transmission/public_html/images/
-rw-r--r-- root/root usr/share/transmission/public_html/images/favicon.ico
-rw-r--r-- root/root usr/share/transmission/public_html/images/favicon.png
-rw-r--r-- root/root usr/share/transmission/public_html/images/webclip-icon.png
-rw-r--r-- root/root usr/share/transmission/public_html/index.html
-rw-r--r-- root/root usr/share/transmission/public_html/transmission-app.js

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/WGBJ84qC8oD+y+yF0cKhlNolO53KXLDwhQr0JIql6jSkG58TzOnIZv4aKl74hQ+Nvw1PhKqTtFj42aTriFxcQE=
SHA256 (Pkgfile) = 4911c9dbef55f9f35dbc7cd756b50af260824e61c7ee194f0a0b4a1e7bd4ee3c
SHA256 (.footprint) = 05ff3f9dfde84d8cd2124e456b9a2ee4c88a0098939adc57a4f6e060c07df522
RWSE3ohX2g5d/RUyW5WZne6lyjhcrDfW5mcx1nauuBee6MlG7AuQx1s9RG+Q7V2rxWtSMZv7AiZ0C0Yz6Z8LthOto1AV0BDxXQc=
SHA256 (Pkgfile) = 85f117d8db575a619e1d8a6b190c4a5d9e26a104cfdc06fd04a59ee481dfc89a
SHA256 (.footprint) = 5443c72ab861446feae58c4d441bc83dbb8355cc82d70f3eb31edaacae77a73d
SHA256 (transmission-4.0.0.tar.xz) = af4f023c0b3f2417f62b314d84ea7f329ca080f86664f24b44246a8c50c6b10a

View File

@ -1,11 +1,11 @@
# Description: BitTorrent client/daemon with command-line interface
# Description: BitTorrent client/daemon with command-line and web user interface
# URL: https://transmissionbt.com/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: curl libevent
name=transmission
version=4.0.0
release=1
release=2
source=(https://github.com/transmission/transmission/releases/download/$version/$name-$version.tar.xz)
build() {
@ -26,5 +26,6 @@ build() {
cmake --build build -j ${JOBS:-1}
DESTDIR=$PKG cmake --install build
rm -r $PKG/usr/share/{doc,transmission}
rm -r $PKG/usr/share/doc
find $PKG -name '*LICENSE*' -delete
}