lz4 move to core

This commit is contained in:
Idris Kalp
2020-10-22 01:03:08 +03:00
parent 426311b4b7
commit 45ef9c17e1
3 changed files with 87 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
import os
from pisi.actionsapi import autotools
def build():
autotools.make('-C lib PREFIX=/usr')
autotools.make('-C programs PREFIX=/usr lz4 lz4c')
def install():
autotools.rawInstall('PREFIX=/usr DESTDIR=%s' % os.environ.pop('INSTALL_DIR'))