File: Makefile

package info (click to toggle)
protontricks 1.13.1%2Bds-1
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 716 kB
  • sloc: python: 5,237; sh: 247; xml: 68; makefile: 9
file content (11 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
SHELL = /bin/sh
PYTHON ?= python3
ROOT ?= /
PREFIX ?= /usr/local

install:
		${PYTHON} setup.py install --prefix="${DESTDIR}${PREFIX}" --root="${DESTDIR}${ROOT}"

		# Remove `protontricks-desktop-install`, since we already install
		# .desktop files properly
		rm "${DESTDIR}${PREFIX}/bin/protontricks-desktop-install"