Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
8eff5991d8 | ||
|
d753f3b642 | ||
|
9d0ace2727 | ||
|
a862203d67 | ||
|
19c6690819 | ||
|
d1a8bcd0b6 |
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
pika-drivers (1.0.0-100pika8+goodbye3) pikauwu; urgency=medium
|
||||||
|
|
||||||
|
* Nvidia 550 no longer experimental
|
||||||
|
|
||||||
|
-- Pika <root@pika.com> Wed, 11 Jan 2023 11:41:38 +0000
|
||||||
|
|
||||||
pika-drivers (1.0.0-100pika7) pikauwu; urgency=medium
|
pika-drivers (1.0.0-100pika7) pikauwu; urgency=medium
|
||||||
|
|
||||||
* Nvidia 550 no longer experimental
|
* Nvidia 550 no longer experimental
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -2,7 +2,7 @@ Source: pika-drivers
|
|||||||
Section: admin
|
Section: admin
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Pika <root@pika.com>
|
Maintainer: Pika <root@pika.com>
|
||||||
Build-Depends: debhelper (>= 9), cargo, build-essential,
|
Build-Depends: debhelper (>= 9), build-essential,
|
||||||
debhelper,
|
debhelper,
|
||||||
python3,
|
python3,
|
||||||
meson,
|
meson,
|
||||||
|
8
debian/rules
vendored
8
debian/rules
vendored
@ -1,11 +1,13 @@
|
|||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
export PATH := $(PATH):/root/.cargo/bin
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh ${@}
|
dh ${@}
|
||||||
|
|
||||||
override_dh_auto_install:
|
override_dh_auto_install:
|
||||||
/root/.cargo/bin/cargo fetch
|
cargo fetch
|
||||||
/root/.cargo/bin/cargo build --release
|
cargo build --release
|
||||||
mkdir -p debian/pika-drivers/usr/bin/
|
mkdir -p debian/pika-drivers/usr/bin/
|
||||||
cp -vf target/release/pika-drivers debian/pika-drivers/usr/bin/
|
cp -vf target/release/pika-drivers debian/pika-drivers/usr/bin/
|
||||||
chmod 755 debian/pika-drivers/usr/bin/pika-drivers
|
chmod 755 debian/pika-drivers/usr/bin/pika-drivers
|
||||||
@ -17,4 +19,4 @@ override_dh_auto_install:
|
|||||||
mkdir -p debian/pika-drivers/usr/share/applications
|
mkdir -p debian/pika-drivers/usr/share/applications
|
||||||
mkdir -p debian/pika-drivers/usr/share/icons/hicolor/scalable/apps
|
mkdir -p debian/pika-drivers/usr/share/icons/hicolor/scalable/apps
|
||||||
cp -vf data/com.github.pikaos-linux.pikadrivers.svg debian/pika-drivers/usr/share/icons/hicolor/scalable/apps/
|
cp -vf data/com.github.pikaos-linux.pikadrivers.svg debian/pika-drivers/usr/share/icons/hicolor/scalable/apps/
|
||||||
cp -vf data/com.github.pikaos-linux.pikadrivers.desktop debian/pika-drivers/usr/share/applications/
|
cp -vf data/com.github.pikaos-linux.pikadrivers.desktop debian/pika-drivers/usr/share/applications/
|
||||||
|
6
main.sh
6
main.sh
@ -3,6 +3,10 @@ mkdir -p pika-drivers
|
|||||||
cp -rvf ./* ./pika-drivers/
|
cp -rvf ./* ./pika-drivers/
|
||||||
cd ./pika-drivers/
|
cd ./pika-drivers/
|
||||||
|
|
||||||
|
# Dead PikaOS3 Release Quirk?
|
||||||
|
apt update
|
||||||
|
apt-get install libglib2.0-0=2.78.0-2 libglib2.0-bin=2.78.0-2 libglib2.0-dev-bin=2.78.0-2 -y --allow-downgrades
|
||||||
|
|
||||||
# Get build deps
|
# Get build deps
|
||||||
apt-get build-dep ./ -y
|
apt-get build-dep ./ -y
|
||||||
apt-get install curl -y
|
apt-get install curl -y
|
||||||
@ -14,4 +18,4 @@ dpkg-buildpackage --no-sign
|
|||||||
# Move the debs to output
|
# Move the debs to output
|
||||||
cd ../
|
cd ../
|
||||||
mkdir -p ./output
|
mkdir -p ./output
|
||||||
mv ./*.deb ./output/
|
mv ./*.deb ./output/
|
||||||
|
@ -3,4 +3,4 @@ pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
|||||||
pub const APP_ICON: &str = "com.github.pikaos-linux.pikadrivers";
|
pub const APP_ICON: &str = "com.github.pikaos-linux.pikadrivers";
|
||||||
pub const APP_GITHUB: &str = "https://github.com/PikaOS-Linux/pkg-pika-drivers";
|
pub const APP_GITHUB: &str = "https://github.com/PikaOS-Linux/pkg-pika-drivers";
|
||||||
pub const DRIVER_DB_JSON_URL: &str =
|
pub const DRIVER_DB_JSON_URL: &str =
|
||||||
"https://raw.githubusercontent.com/PikaOS-Linux/pkg-pika-drivers/main/driver-db.json";
|
"https://raw.githubusercontent.com/PikaOS-Linux/pkg-pika-drivers/OS3/driver-db.json";
|
||||||
|
Loading…
Reference in New Issue
Block a user