Co-authored-by: Ivan Jurišić <ijurisic@noreply.git.jurisic.org> Co-authored-by: Ivan Jurišić <ivan@jurisic.org> Co-authored-by: marsupilami79 <marsupilami79@gmx.de> Reviewed-on: marsupilami79/nextcloud-deb#5 Co-authored-by: Jan Baumgarten <jan.baumgarten@iks.ag> Co-committed-by: Jan Baumgarten <jan.baumgarten@iks.ag>
26 lines
762 B
Markdown
26 lines
762 B
Markdown
## Installation from repository
|
|
```
|
|
wget -qO /etc/apt/keyrings/jurisic-keyring.asc https://apt.jurisic.org/Release.key
|
|
echo "deb [ signed-by=/etc/apt/keyrings/jurisic-keyring.asc ] https://apt.jurisic.org/debian/ $(lsb_release -cs) main contrib non-free" > /etc/apt/sources.list.d/jurisic.list
|
|
sudo apt update
|
|
sudo apt install nextcloud-server
|
|
```
|
|
|
|
## Requirements for build packages
|
|
```
|
|
sudo apt-get install build-essential fakeroot devscripts apache2-dev
|
|
```
|
|
|
|
## Self build package
|
|
```
|
|
git clone https://git.jurisic.org/ijurisic/nextcloud-deb.git
|
|
cd nextcloud-deb
|
|
git checkout trixie
|
|
uscan --verbose --download-current-version
|
|
cd ../nextcloud-server-32.0.1
|
|
dch -n
|
|
dpkg-buildpackage -rfakeroot -us -uc
|
|
cd ..
|
|
dpkg -i nextcloud-server_32.0.1-1~deb13_all.deb
|
|
```
|