[improvement][aur] generating the optimized makepkg.conf at ~/.config/bauh/arch and using it as a build parameter

This commit is contained in:
Vinicius Moreira
2019-11-27 11:33:13 -03:00
parent 7dda304c7a
commit 374c697196
5 changed files with 42 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
import os
from bauh.api.constants import CACHE_PATH
from bauh.api.constants import CACHE_PATH, HOME_PATH
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
BUILD_DIR = '/tmp/bauh/aur'
@@ -8,3 +8,5 @@ ARCH_CACHE_PATH = CACHE_PATH + '/arch'
CATEGORIES_CACHE_DIR = ARCH_CACHE_PATH + '/categories'
CATEGORIES_FILE_PATH = CATEGORIES_CACHE_DIR + '/aur.txt'
URL_CATEGORIES_FILE = 'https://raw.githubusercontent.com/vinifmor/bauh-files/master/aur/categories.txt'
CONFIG_DIR = '{}/.config/bauh/arch'.format(HOME_PATH)
CUSTOM_MAKEPKG_PATH = '{}/makepkg.conf'.format(CONFIG_DIR)