Received: from mail-pl1-f179.google.com (mail-pl1-f179.google.com [209.85.214.179]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id C321B782C8E for <~alpine/users@lists.alpinelinux.org>; Fri, 8 Jan 2021 22:47:32 +0000 (UTC) Received: by mail-pl1-f179.google.com with SMTP id j1so6443747pld.3 for <~alpine/users@lists.alpinelinux.org>; Fri, 08 Jan 2021 14:47:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:mime-version :content-transfer-encoding; bh=kNO2BU3cFfHCM9RGia6GyQdsakT+9zYoEljiFr7KERA=; b=V9JLrTASZqSSS2alN+YQL/2Krtbasx358El4SqVnhwg4f4sbjvG9QwyfpzIcLv54Qc 2zYDOPqZfls5yPyGM0+hBFQsNpxNVkGZ35DxDkMBonNWZjV7PVUJNFhpzNEdL+pOQr9p Cr1BjUxK+YHt9EsyoY2o6i3/wacKFRGzv7Jwy6q9NuH4PjHXAAXaIudFEaos4ksNyIPu o76jUu89H7KNKI8rIDkxiTs8IiMzHyaWR6pLGfzD8saYgoqQ8joOmhaGbvzUX23DOZGE Qmodqhb6PsjAiNpwgapjDisi+iy1YNyIYmkJrywgHAVUnrUJW4l7wmGtTNLvU2tXPi0Y MQvg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-transfer-encoding; bh=kNO2BU3cFfHCM9RGia6GyQdsakT+9zYoEljiFr7KERA=; b=lfocmrCnr0jJC0NDaXpEMa3ETQRL9weVBtRKps69HnBsKYlUWvryAMnqdMgPtb4u3K AUUpUVALtU5P5iDNJvxQVmI6CnwszlWM01/zUfANe53fCiKZG8lD2tTj1VR6KhMKggPo 7qHmp9z+b+palc99e+cRKNtxvFMUwk9JPxv+Qw9g7E4+YqLV8V8PEmqDtRmg9YtBp/+o LFwqilRe8aYx3m7avOYGHXWb0WHvzn8r1xOn9PAH51XgrV3eXQS8aAUEQDMXpxMjjDBz 7ZFuJH2zdrQnvrb1Hp7ABBKer+ynS+tYr2TLaWLNTUgTGPSQfSud4jxOJofQWtNCFGcB geww== X-Gm-Message-State: AOAM5306y8H4/Ldxp+d0uqKtsl25zh0EMYSq0Z9Doa1U3Z2AWzTC1Za2 uhOW6MEihNeZMHiMb4TmnIqGJc0J1D5pzQ== X-Google-Smtp-Source: ABdhPJwKFmHHH6pYpLnfhIOkqYiZBjhVItYUKBuSEQ2gjWoB8j8YEvrTsFUf1vEi5jrkk1skyc5+KQ== X-Received: by 2002:a17:902:9b91:b029:db:f003:c5eb with SMTP id y17-20020a1709029b91b02900dbf003c5ebmr5963717plp.1.1610146050693; Fri, 08 Jan 2021 14:47:30 -0800 (PST) Received: from mac ([2806:1000:8200:6150:ae72:89ff:fe37:3435]) by smtp.gmail.com with ESMTPSA id a5sm10887535pgl.41.2021.01.08.14.47.29 for <~alpine/users@lists.alpinelinux.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 08 Jan 2021 14:47:29 -0800 (PST) Date: Fri, 8 Jan 2021 14:47:28 -0800 From: antoniomaccagnan To: ~alpine/users@lists.alpinelinux.org Subject: Simple way to make an apk package Message-Id: <20210108144728.fe811b01eea3cb02218058d2@gmail.com> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.32; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi, I need to make a simple apk package for my own use, to copy files and setting from one install to another. I'd like to know if there is a simple way to do that, without having to setup the git repo and all, like pretending that the packaging directory is actually the root of the file system, and putting the files of my program where they would be installed to, and then create the apk package. Thanks.